/* ========================================= */
/* LAND ACQUISITION */
/* ========================================= */

/* ========================================= */
/* BANNER */
/* ========================================= */

.land-banner {
  position: relative;

  width: 100%;
  height: 78vh;

  overflow: hidden;

  background: #000;
}

/* IMAGE */

.land-banner img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;

  display: block;

  transform: scale(1.02);

  transition: transform 6s ease;
}

.land-banner:hover img {
  transform: scale(1.06);
}

/* OVERLAY */

.land-banner-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.58),
      rgba(0,0,0,0.40)
    );
}

/* CONTENT */

.land-banner-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;
  max-width: 1200px;

  padding: 0 40px;

  z-index: 2;
}

/* TITLE */

.land-banner-content h1 {
  font-size: 72px;
  line-height: 1.08;
  font-weight: 800;

  color: #ffffff;

  margin: 0;

  letter-spacing: -0.02em;

  text-shadow:
    0 3px 10px rgba(0,0,0,0.25);

  animation:
    landFadeUp 1s ease forwards;
}

/* RED LINE */

.land-banner-line {
  display: block;

  width: 58px;
  height: 5px;

  margin-top: 18px;

  border-radius: 50px;

  background: #d40511;

  animation:
    landLineGrow 1s ease forwards;
}

/* ========================================= */
/* CONTENT SECTION */
/* ========================================= */

.land-info-section {
  background: #f1f4f6;

  padding:
    110px
    20px
    120px;
}

/* CONTAINER */

.land-info-container {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

/* CONTENT */

.land-info-content {
  margin-bottom: 42px;
}

.land-info-content h2 {
  font-size: 35px;
  line-height: 1.15;
  font-weight: 800;

  color: #17233c;

  margin-bottom: 28px;

  letter-spacing: -0.02em;
}

.land-info-content p {
  max-width: 760px;

  margin: 0 auto;

  font-size: 22px;
  line-height: 1.9;

  color: #24324a;
}

/* IMAGE */

.land-info-image {
  overflow: hidden;

  border-radius: 10px;
}

.land-info-image img {
  width: 100%;

  display: block;

  border-radius: 10px;

  box-shadow:
    0 14px 40px rgba(0,0,0,0.08);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.land-info-image:hover img {
  transform: scale(1.03);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.12);
}

/* ========================================= */
/* ANIMATIONS */
/* ========================================= */

.fade-up {
  animation:
    landFadeUp 1s ease forwards;
}

@keyframes landFadeUp {

  from {
    opacity: 0;

    transform:
      translateY(35px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}

@keyframes landLineGrow {

  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 58px;
    opacity: 1;
  }

}

/* ========================================= */
/* LARGE SCREEN */
/* ========================================= */

@media (max-width: 1400px) {

  .land-banner-content h1 {
    font-size: 60px;
  }

}

/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 1024px) {

  .land-banner {
    height: 64vh;
  }

  .land-banner-content {
    padding: 0 32px;
  }

  .land-banner-content h1 {
    font-size: 52px;
  }

  .land-info-content h2 {
    font-size: 42px;
  }

  .land-info-content p {
    font-size: 19px;
  }

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {

  .land-banner {
    height: 52vh;
  }

  .land-banner-content {
    padding: 0 24px;
  }

  .land-banner-content h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .land-banner-line {
    width: 48px;
    height: 4px;

    margin-top: 14px;
  }

  .land-info-section {
    padding:
      80px
      20px
      90px;
  }

  .land-info-content {
    margin-bottom: 34px;
  }

  .land-info-content h2 {
    font-size: 34px;

    margin-bottom: 22px;
  }

  .land-info-content p {
    font-size: 17px;
    line-height: 1.8;
  }

}

/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 480px) {

  .land-banner {
    height: 46vh;
  }

  .land-banner-content h1 {
    font-size: 32px;
  }

  .land-info-content h2 {
    font-size: 28px;
  }

  .land-info-content p {
    font-size: 16px;
  }

}